home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 14 / Hot Mix 14.iso / HTML / run_movie.csh < prev   
Linux/UNIX/POSIX Shell Script  |  1996-07-29  |  359b  |  12 lines

  1. #!/bin/csh -f
  2.  
  3. if !(-e "/usr/sbin/movieplayer") then
  4.    # Cannot find Movieplayer in /usr/sbin/movieplayer
  5.    if (-e `which movieplayer`) then
  6.     `which movieplayer` -f -D -v -l 1 -S 200,200 $HOTMIXDIR/HTML/hotmix.qt
  7.    endif
  8. else
  9.    /usr/sbin/movieplayer -f -D -v -l 1 -S 200,200 $HOTMIXDIR/HTML/hotmix.qt
  10.    # Found Movieplayer in /usr/sbin/movieplayer
  11. endif
  12.